home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: Visual Basic
/
Resource for Source - Visual Basic.iso
/
tools
/
generic.exe
/
GENFUN.C
< prev
next >
Wrap
Text File
|
1993-04-23
|
751b
|
26 lines
//---------------------------------------------------------------------------
// Copyright (C) 1993, Microsoft Corporation
//
// You have a royalty-free right to use, modify, reproduce and distribute
// the Sample Custom Control Files (and/or any modified version) in any way
// you find useful, provided that you agree that Microsoft has no warranty,
// obligation or liability for any Custom Control File.
//---------------------------------------------------------------------------
// gener.rc
//---------------------------------------------------------------------------
#include <windows.h>
#include "genfun.h"
int FAR PASCAL GenStrlen(LPSTR lpString)
{
int i = 0;
while (*(lpString++))
i++;
return (i);
}